/* Intro */
 .intro .container {
    margin-top: 97px;
    text-align: center;
}

/* Wie zijn wij */
.wij .container {
    margin-top: 10px; 
    margin-bottom: 50px;
    padding: 5px 10px;
    width: 100%;
}
.wij .wij-text {
    width: 60%;
}

/* Onze expertise */
.expertise .container {
    margin-top: 10px;
    margin-bottom: 100px;
    width: 100%;
}
.expertise .expertise-text {
    width: 60%;    
}
.expertise .expertise-text .sub-text1 {
    margin: 5px 0 10px 20px;
}
.expertise .expertise-text .sub-text2 {
    margin: 5px 0 10px 20px;
}


/* team */
.team .container {
    margin-top: 10px;
    margin-bottom: 100px;
    width: 100%;
}
.team  h1 {
    padding: 5px;
    text-align: center;
}
.profiel-grid {
    display: grid;
    grid-template-columns: 0.5fr 0.75fr;
    gap: 0px;
    justify-content: left;
    align-items: center;
    margin-top: 30px;
}
.profiel-grid .img {
    max-width: 50%;
}
.profiel-grid .naam {
    margin-bottom: 20px;
    font-weight: 600;
}

/*media Queries*/
@media (max-width:920px) {
    .wij .container, .wij .container .wij-text, .expertise .container .expertise-kop, .expertise .container .expertise-text {
        width: 100%;
        text-align: center;
    }
    .kaartjes .kaartjes-grid {
        gap: 50px;
    }
    .kaartjes {
        padding: 50px 20px;
    }
} 
@media (max-width:600px) {

    .profiel-grid {
        grid-template-columns: 1fr;
        align-items: center;
        gap: 20px;
    }
     .profiel-grid > div {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    } 
}
